home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / doc / cupsddk / examples / grouping.drv < prev    next >
Encoding:
Text File  |  2009-01-19  |  729 b   |  37 lines

  1. // Include standard font and media definitions
  2. #include <font.defs>
  3. #include <media.defs>
  4.  
  5. // List the fonts that are supported, in this case all standard
  6. // fonts...
  7. Font *
  8.  
  9. // Manufacturer and version
  10. Manufacturer "Foo"
  11. Version 1.0
  12.  
  13. // Each filter provided by the driver...
  14. Filter application/vnd.cups-raster 100 rastertofoo
  15.  
  16. // Supported page sizes
  17. *MediaSize Letter
  18. MediaSize A4
  19.  
  20. {
  21.   // Supported resolutions
  22.   *Resolution k 8 0 0 0 "600dpi/600 DPI"
  23.  
  24.   // Specify the model name and filename...
  25.   ModelName "FooJet 2000"
  26.   PCFileName "foojet2k.ppd"
  27. }
  28.  
  29. {
  30.   // Supported resolutions
  31.   *Resolution k 8 0 0 0 "1200dpi/1200 DPI"
  32.  
  33.   // Specify the model name and filename...
  34.   ModelName "FooJet 2001"
  35.   PCFileName "foojt2k1.ppd"
  36. }
  37.